home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000188_news@newsmaster….columbia.edu _Tue May 13 12:53:08 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA00442
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 13 May 1997 12:53:07 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA04817
  7.     for kermit.misc@watsun; Tue, 13 May 1997 12:53:07 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: K95 problem with logging session
  12. Date: 13 May 1997 16:53:05 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <5la69h$i4a$1@apakabar.cc.columbia.edu>
  16. References: <33787950.5951997@news.uoguelph.ca>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7020
  19.  
  20. In article <33787950.5951997@news.uoguelph.ca>,
  21. Leon Loo <lloo@POBoxes.com.X> wrote:
  22. : I'm trying to log a session with Kermit 95 version 1.1.11
  23. : These are the commands that seem to work
  24. : log session test
  25. : log session 123
  26. : log session c:\test
  27. : However when I tried:
  28. : log session c:\123
  29. : It seems to fail every time I use a numerical file name with an
  30. : explicit path.  It looks like it's trying to log the session to a file
  31. : name '{' in the default directory.  Here is a screen capture with the
  32. : results of a SHOW FILE command after the LOG SESSION.
  33. When referring to a file that does not yet exist, the "\nnn" (nnn being
  34. digits) notation is ambiguous.  Does it mean, literally, (in this case)
  35. "\123", or is it a backslash-escape, which (in this case) evaluates to the
  36. character '{'?
  37.  
  38. The manual lists numerous ways to handle such situations.  In this case,
  39. the simplest is to use the "other" slash:
  40.  
  41.   log session c:/123
  42.  
  43. Others include:
  44.  
  45.   log session c:\\123
  46.  
  47. or:
  48.  
  49.   set command quoting off
  50.   log session c:\123
  51.   set command quoting on
  52.  
  53. etc.
  54.  
  55. - Frank